Linux Fundamentals
Created: 2022-06-16 Tags: #fleeting
EVERYTHING but on linux terminal find -name <filename.txt> --> search every directory with a file named filename.txt find -name *.txt --> To find all .txt files
find -name <filename.txt>
filename.txt
find -name *.txt
GREP - uses regex to search texts in linux files
Linux